home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / ISPPExample1.iss < prev    next >
Text File  |  2006-10-03  |  1KB  |  47 lines

  1. ; -- ISPPExample1.iss --
  2. ;
  3. ; This script shows various basic things you can achieve using Inno Setup Preprocessor (ISPP) by Alex Yackimoff.
  4. ; To enable commented #define's, either remove the ';' or use ISPPCC with the /D switch.
  5. ;
  6. ; To download and install ISPP, get the Inno Setup QuickStart Pack from http://www.jrsoftware.org/isdl.php#qsp
  7.  
  8. #pragma option -v+
  9. #pragma verboselevel 9
  10.  
  11. #define Debug
  12.  
  13. ;#define AppEnterprise
  14.  
  15. #ifdef AppEnterprise
  16.   #define AppName "My Program Enterprise Edition"
  17. #else
  18.   #define AppName "My Program"
  19. #endif
  20.  
  21. #define AppVersion GetFileVersion(AddBackslash(SourcePath) + "MyProg.exe")
  22.  
  23. [Setup]
  24. AppName={#AppName}
  25. AppVerName={#AppName} version {#AppVersion}
  26. DefaultDirName={pf}\{#AppName}
  27. DefaultGroupName={#AppName}
  28. UninstallDisplayIcon={app}\MyProg.exe
  29. LicenseFile={#file AddBackslash(SourcePath) + "ISPPExample1License.txt"}
  30. VersionInfoVersion={#AppVersion}
  31. OutputDir=userdocs:Inno Setup Examples Output
  32.  
  33. [Files]
  34. Source: "MyProg.exe"; DestDir: "{app}"
  35. #ifdef AppEnterprise
  36. Source: "MyProg.chm"; DestDir: "{app}"
  37. #endif
  38. Source: "Readme.txt"; DestDir: "{app}"; \
  39.   Flags: isreadme
  40.  
  41. [Icons]
  42. Name: "{group}\{#AppName}"; Filename: "{app}\MyProg.exe"
  43.  
  44. #ifdef Debug
  45.   #expr SaveToFile(AddBackslash(SourcePath) + "Preprocessed.iss")
  46. #endif
  47.